home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Concept 6
/
CD Concept 06.iso
/
mac
/
UTILITAIRE
/
RLaB
/
rlib
/
isinf.r
< prev
next >
Wrap
Text File
|
1994-02-21
|
415b
|
17 lines
//-------------------------------------------------------------------//
// Syntax: isinf ( X )
// Description:
// Isinf returns a matrix the same size as X containing zeros and
// ones. The ones locate the values in X that are infinte.
//-------------------------------------------------------------------//
isinf = function ( X )
{
return ones (size (X))*inf() == X || ones (size (X))* -inf() == X;
};